.friendship-links-section {
    width: 83%; /* 设置宽度 */
    margin: 0 auto; /* 左右自动，实现水平居中 */
    display: flex;
    align-items: center; /* 垂直居中对齐 */
    font-size: 15px; /* 设置整体字体大小 */
}

.friendship-links-section h3 {
    margin-right: 15px; /* 标题与链接之间的间距 */
    font-size: 15px; /* 确保h3标题也是15px */
    font-weight: bold; /* 可选：保持标题的粗体样式 */
}

.friendship-links-section ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.friendship-links-section li {
    margin-right: 20px; /* 链接之间的间距 */
}

.friendship-links-section li:last-child {
    margin-right: 0; /* 最后一个链接不设右边距 */
}

.friendship-links-section a {
    color: #000; /* 设置链接颜色为黑色 */
    text-decoration: none; /* 移除下划线 */
}

.friendship-links-section a:hover {
    text-decoration: underline; /* 悬停时显示下划线 */
}
